/* Rexx and variables */
a
=
5
;
b
=
6
;
c
=
a
+
b
d
=
'String01'
;
e
=
'String02'
;
f
=
d
||
e
SAY
a b c
;
SAY
d e f
EXIT
0